home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
asenda1a
/
form1.frm
next >
Wrap
Text File
|
1999-07-01
|
3KB
|
74 lines
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.1#0"; "COMDLG32.OCX"
Begin VB.Form Form1
BorderStyle = 4 'Fixed ToolWindow
Caption = "ASCENDANCY CHEATER"
ClientHeight = 3195
ClientLeft = 45
ClientTop = 285
ClientWidth = 4680
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 4680
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin MSComDlg.CommonDialog CommonDialog1
Left = 2100
Top = 1350
_ExtentX = 847
_ExtentY = 847
_Version = 327680
End
Begin VB.CommandButton Command2
Caption = "Click to print cheats."
Height = 255
Left = 2370
TabIndex = 2
Top = 0
Width = 2265
End
Begin VB.TextBox Text1
Height = 2895
Left = 30
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 1
Top = 270
Width = 4605
End
Begin VB.CommandButton Command1
Caption = "Click to make cheat file."
Height = 255
Left = 0
TabIndex = 0
Top = 0
Width = 2355
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form2.Show
End Sub
Private Sub Command2_Click()
On Error GoTo errhands
Form3.Label1.Caption = Text1.Text
CommonDialog1.ShowPrinter
Printer.Copies = CommonDialog1.Copies
Form3.PrintForm
'Form3.Show
errhands:
Exit Sub
End Sub
Private Sub Form_Load()
Text1.Text = "Here are the Ascendancy cheats." & vbCrLf & vbCrLf & "STAR SCREEN" & vbCrLf & "[1-7] - Veiw player 1 thru 7." & vbCrLf & "[8] - Star lanes Revealed" & vbCrLf & "[ALT + E] - Steal Technology" & vbCrLf & "[C] - Show Stats of Galaxy" & vbCrLf & "[L] - shows all starlanes" & vbCrLf & "[S] - Shows all stars" & vbCrLf & vbCrLf & "PLANET MAP SCREEN" & vbCrLf & "[I] - Completes current project" & vbCrLf & "[O] - Max out planet Population" & vbCrLf & "[R] - Bring alien colony under your control***" & vbCrLf & "[SHIFT + M] - adds 1 to max population" & vbCrLf & "[T] - Create Colony on Planet***" & vbCrLf & vbCrLf & "REASERCH SCREEN" & vbCrLf & "[E] - Finish Current Project" & vbCrLf & "[D] - Gain all Reasearch" & vbCrLf & vbCrLf & "*** MAY FREEZE GAME!"
End Sub